home *** CD-ROM | disk | FTP | other *** search
/ Amiga Tools 4 / Amiga Tools 4.iso / tools / wb-enhancement / clocktool / smakefile < prev    next >
Makefile  |  1993-10-27  |  973b  |  47 lines

  1. ######################################################################
  2. #
  3. # smakefile to build ClockTool
  4. #
  5. #   GMD - Oct 93 
  6. #
  7. #
  8. # SAS/C 6.3
  9. #
  10. ######################################################################
  11.  
  12.  
  13. O=O/
  14. SO=ObjectName=$(O) noIcons
  15.  
  16. ##SF=debug=sf
  17. SF=
  18.  
  19. INCS    = ClockTool.h  typedefs.h ClockTool_protos.h
  20. OBJS    = $(O)ClockTool.o 
  21.  
  22. ClockTool    : $(OBJS) $(INCS)
  23.     slink  FROM lib:c.o $(OBJS)  TO ClockTool LIB lib:sc.lib \
  24.         lib:amiga.lib noIcons quiet 
  25. #    slink  ClockTool.exe TO ClockTool NODEBUG noicons quiet
  26. #    @C:Filenote $(O)\#?.o NOBACKUP  QUIET
  27. #    @C:Filenote ClockTool.exe NOBACKUP  QUIET 
  28.  
  29. $(O)ClockTool.o   : ClockTool.c  $(INCS)
  30.     sc $(SF) nover   $(SO)   ClockTool
  31.  
  32. clean: 
  33.     delete ClockTool $(OBJS)  >nil:
  34.  
  35. indent:
  36.     indent -gnu ClockTool.c
  37.  
  38. protos:
  39.     sc novers genprotos ClockTool.c
  40.     @Delete  ClockTool_protos.h.info >nil:
  41.  
  42. all:    indent     protos ClockTool
  43.  
  44. archive:
  45.     lha -r a clocktool.lha $(INCS) ClockTool ClockTool.c \
  46.     smakefile  \#?.h README  O/.mkdate
  47.